home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 5_11.lha / 5_11 / 5_11c.c < prev    next >
Text File  |  1993-08-08  |  411b  |  18 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. / included within expandtree()        DELETE
  6. lse
  7.    {
  8.    tree *ret = get_expr(input, variables);
  9.    for (tree *nhead = ret;
  10.  curr_tok.type == SEMICOLON;
  11.  nhead = nhead->next)
  12.  {
  13.  get_token(input, variables);
  14.  nhead->next = get_expr(input, variables);
  15.  }
  16.    return ret;
  17.    }
  18.